generalize$31248$ - определение. Что такое generalize$31248$
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое generalize$31248$ - определение

Generalize Type

generalise         
  • When the mind makes a generalization, it extracts the essence of a concept based on its analysis of similarities from many discrete objects. The resulting simplification enables higher-level thinking.
FORM OF ABSTRACTION WHEREBY COMMON PROPERTIES OF SPECIFIC INSTANCES ARE FORMULATED AS GENERAL CONCEPTS OR CLAIMS
Generalisation; Generalise; Generalize; Generalizing; Generalising; Generalised; Generalized; Generalization (mathematics); General case; Generalisations; Generalizations
Generalization         
  • When the mind makes a generalization, it extracts the essence of a concept based on its analysis of similarities from many discrete objects. The resulting simplification enables higher-level thinking.
FORM OF ABSTRACTION WHEREBY COMMON PROPERTIES OF SPECIFIC INSTANCES ARE FORMULATED AS GENERAL CONCEPTS OR CLAIMS
Generalisation; Generalise; Generalize; Generalizing; Generalising; Generalised; Generalized; Generalization (mathematics); General case; Generalisations; Generalizations
·noun A general inference.
II. Generalization ·noun The act or process of generalizing; the act of bringing individuals or particulars under a genus or class; deduction of a general principle from particulars.
generalize         
  • When the mind makes a generalization, it extracts the essence of a concept based on its analysis of similarities from many discrete objects. The resulting simplification enables higher-level thinking.
FORM OF ABSTRACTION WHEREBY COMMON PROPERTIES OF SPECIFIC INSTANCES ARE FORMULATED AS GENERAL CONCEPTS OR CLAIMS
Generalisation; Generalise; Generalize; Generalizing; Generalising; Generalised; Generalized; Generalization (mathematics); General case; Generalisations; Generalizations
(generalizes, generalizing, generalized)
Note: in BRIT, also use 'generalise'
1.
If you generalize, you say something that seems to be true in most situations or for most people, but that may not be completely true in all cases.
'In my day, children were a lot better behaved'.-'It's not true, you're generalizing'...
It's hard to generalize about Cole Porter because he wrote so many great songs that were so varied.
VERB: V, V prep
2.
If you generalize something such as an idea, you apply it more widely than its original context, as if it was true in many other situations.
A child first labels the household pet cat as a 'cat' and then generalises this label to other animals that look like it.
VERB: V n across/to n

Википедия

Type generalization

Type generalization is a technique commonly used in refactoring. The idea is to draw on the benefits of object-orientation and make more-generalized types, thus enabling more code sharing, leading to better maintainability as there is less code to write. Too-general code can, however, become completely useless, leading to spaghetti code doing effectively nothing.

Type generalization refers to making more general or more abstract some subset of the traits of a specific type. A superclass has wider use than a specific subclass, and so is more 'general'.

An example of generalizing a type would be moving a method from a child to a parent class for common use by all the parent class' children, not just the original child.

Another example, in the Java programming language, would be access to an object via an interface which isn't tied into a specific implementation of that interface.